![]() | ![]() | ![]() | ![]() |
The following error appears in the “Define and Analyze Events” step of “Root Cause Analysis” in a Polish installation of SAS Asset Performance Analytics:
This error occurs because the VARCLUS procedure output table called RSquare contains a column named Skupienie instead of Cluster.
To work around this issue, modify the file pam_rca_defineAnalyzeEvents.sas in the following location:
This fix can be implemented after configuration is completed for SAS Asset Performance Analytics 6.1 M2.
The fix is to add an equal symbol ( = ) to the IF statement in the following DATA step. The code below includes the fix:
data work.rsq_pearson(drop=cluster2); set work.rsq_pearson; cluster2 = upcase(cluster); if substr(cluster2,1,9) = 'SKUPIENIE' then do; cluster = 'Cluster ' || substr(cluster,11); end; run;
Product Family | Product | System | Product Release | SAS Release | ||
Reported | Fixed* | Reported | Fixed* | |||
SAS System | SAS Asset Performance Analytics | Microsoft® Windows® for x64 | 6.1 | 6.2_M1 | 9.4 TS1M2 | 9.4 TS1M4 |
Linux for x64 | 6.1 | 6.2_M1 | 9.4 TS1M2 | 9.4 TS1M4 |